home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / SUBS / FM / PHASE < prev    next >
Encoding:
Text File  |  1993-03-25  |  371 b   |  21 lines

  1. # borland s/w is on drive...
  2.  
  3. BDRV=C:
  4.  
  5. DEFAULT: phase.exe
  6.  
  7. !ifdef BCC
  8.  
  9. phase.exe: phase.c
  10.     bcc -I$(BDRV)\borlandc\include -c phase.c
  11.     tlink  $(BDRV)\borlandc\lib\C0s phase,phase,,..\..\inc\bvhslib+..\..\inc\bvslib+$(BDRV)\borlandc\lib\cs.lib;
  12.  
  13. !else
  14.  
  15. phase.exe: phase.c
  16.     cl /Zi /c phase.c
  17.     link /Co /Ma phase,,,..\..\inc\mvhslib;
  18.  
  19. !endif
  20.  
  21.